home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Online / Epic4 / share / epic / help / 6_functions / channel < prev    next >
Text File  |  2001-03-21  |  673b  |  23 lines

  1. Synopsis:
  2.    $channel(<channel name>)
  3.  
  4. Technical:
  5.    This function returns some extended information about who's on a channel.
  6.    It returns a sorted list of nicknames prepended by two characters.
  7.  
  8. Returns:
  9.    space-separated list in the form: OVnick, where O is channel operator
  10.    status (an '@' if the nick is a chanop, '.' if not, '?' if we don't know),
  11.    V is voice status (a '+' if the nick has voice status, '.' if not, '?' if
  12.    we don't know)
  13.  
  14. Examples:
  15.    Instead of:
  16.       /on ^send_public * {if ([$0] == C) {...} {...}}
  17.    Try doing:
  18.       /on ^send_public * {if (iscurchan($0)) {....} {...}}
  19.  
  20. See Also
  21.    chops(6); nochops(6); chanusers(6)
  22.  
  23.